home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue34 / clinic / Drag2U.PAS < prev    next >
Pascal/Delphi Source File  |  1998-02-07  |  469b  |  31 lines

  1. unit Drag2U;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.   public
  12.     procedure WMNCHitTest(var Msg: TMessage);
  13.       message wm_NCHitTest;
  14.   end;
  15.  
  16. var
  17.   Form1: TForm1;
  18.  
  19. implementation
  20.  
  21. {$R *.DFM}
  22.  
  23. procedure TForm1.WMNCHitTest(var Msg: TMessage);
  24. begin
  25.   inherited;
  26.   if Msg.Result = HTClient then
  27.     Msg.Result := HTCaption
  28. end;
  29.  
  30. end.
  31.